home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / Dev / StormAmigalib / stormamiga_lib / Include / sys / unistd.h < prev   
Encoding:
C/C++ Source or Header  |  1999-12-03  |  539 b   |  21 lines

  1. #ifndef SYS_UNISTD_H
  2. #define SYS_UNISTD_H
  3.  
  4. /*
  5. **        $VER: sys/unistd.h 1.1 (18.09.98)
  6. **             Includes Release 44.10
  7. **
  8. **     Copyright © 1996/98 by CyberdyneSystems
  9. **
  10. **            written by Matthias Henze
  11. **               All Rights Reserved
  12. */
  13.  
  14. /* access function */
  15. #define F_OK  0       /* test for existence of file */
  16. #define X_OK  0x01    /* test for execute or search permission */
  17. #define W_OK  0x02    /* test for write permission */
  18. #define R_OK  0x04    /* test for read permission */
  19.  
  20. #endif /* SYS_UNISTD_H */
  21.